home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games: Greatest Hits 1996 / Amiga Games: Greatest Hits 1996.iso / userbox / publicdomain / finditgui / install < prev    next >
Text File  |  1992-03-06  |  1KB  |  71 lines

  1. ; PassWord 3.1 installation script
  2. ; $VER: 1.0 (09.01.95) by Michael Griggs
  3.  
  4.  
  5. (set #askoptions-help
  6.             "You may select one, all or none of the choices specified."
  7. )
  8.  
  9.  
  10. (set exedest
  11.    (askdir
  12.       (prompt "Where do you wish to install FindItGui ?")
  13.       (help @askdir-help)
  14.       (default "sys:utilities")
  15.    )
  16. )
  17.  
  18. (copyfiles
  19.    (prompt "Copying FindItGui...")
  20.    (source "FindItGui")
  21.    (infos)
  22.    (dest exedest)
  23. )
  24.  
  25. (set installdoc
  26.         (askoptions
  27.  
  28.         (prompt "Which documentation would you like installed?")
  29.         (help #askoptions-help)
  30.  
  31.         (choices
  32.  
  33.             "AmigaGuide"
  34.             "Standard Text"
  35.  
  36.         )
  37.     )
  38. )
  39.  
  40.  
  41. (if (in installdoc 0)
  42.     (copyfiles
  43.         (prompt "Copying Documentation...")
  44.         (source "FindItGui.Guide")
  45.         (infos)
  46.         (dest exedest)
  47.     ))
  48.  
  49. (if (in installdoc 1)
  50.     (copyfiles
  51.         (prompt "Copying Documentation...")
  52.         (source "FindItGui.Doc")
  53.         (infos)
  54.         (dest exedest)
  55.     ))
  56.  
  57.  
  58. (copylib
  59.     (prompt "Copying bgui.library to LIBS:")
  60.     (source "libs/bgui.library")
  61.     (dest "LIBS:")
  62.     (confirm)
  63.     (help @copylib-help)
  64. )
  65.       
  66. (set @default-dest exedest)
  67. (message "FindItGui is now ready to go!")
  68. (message "Please read the documentation for more information")
  69.  
  70.  
  71.